* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #1a1a1a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 100vh;
}

.container {
    max-width: 800px;
    text-align: center;
    padding: 20px;
}

.vsauce-container {
    position: relative;
    width: 300px;
    height: 300px;
    margin: 0 auto 20px;
    border-radius: 10px;
    overflow: hidden;
}

.vsauce-container img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

#vsauce-talking {
    opacity: 0;
}

.text-container {
    margin-bottom: 30px;
}

h1 {
    font-size: 32px;
    margin-bottom: 10px;
    color: #ff0000;
}

h2 {
    font-size: 24px;
    margin-bottom: 15px;
}

#topic-text {
    display: none;
}

#question-text {
    display: none;
}

.input-container {
    margin-bottom: 20px;
}

#topic-input {
    padding: 10px;
    font-size: 16px;
    width: 80%;
    max-width: 400px;
    border-radius: 5px;
    border: 2px solid #ff0000;
    background-color: #333;
    color: white;
}

#topic-input::placeholder {
    color: #aaa;
}

#topic-input:focus {
    outline: none;
    border-color: #ff6600;
}

#play-button {
    background-color: #ff0000;
    color: white;
    border: none;
    padding: 12px 24px;
    font-size: 18px;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

#play-button:hover {
    background-color: #cc0000;
}